100
|
How do I draw italic the group's name

axListBar1.Groups.Add("Group 1");
axListBar1.Groups.Add("Group 2").Italic = true;
axListBar1.Groups.Add("Group 3");
|
99
|
How do I bold the group's name

axListBar1.Groups.Add("<b>Group</b> 1").CaptionFormat = EXLISTBARLib.CaptionFormatEnum.exHTML;
|
98
|
How do I bold the group's name

axListBar1.Groups.Add("Group 1");
axListBar1.Groups.Add("Group 2").Bold = true;
axListBar1.Groups.Add("Group 3");
|
97
|
How can I align the icon in the group's caption

axListBar1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
EXLISTBARLib.Group var_Group = axListBar1.Groups.Add("Group 1 <img>1</img>");
var_Group.CaptionFormat = EXLISTBARLib.CaptionFormatEnum.exHTML;
var_Group.Alignment = EXLISTBARLib.AlignmentEnum.exRight;
|
96
|
How can I align the group's name

axListBar1.Groups.Add("Group 1").Alignment = EXLISTBARLib.AlignmentEnum.exRight;
|
95
|
How can I align the group's name

axListBar1.Groups.Add("Group 1").Alignment = EXLISTBARLib.AlignmentEnum.exLeft;
|
94
|
How can I assign some extra data to a group
axListBar1.Groups.Add("Group 1").UserData = "your data";
|
93
|
How can I display an icon in the group's caption

axListBar1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
axListBar1.Groups.Add("Group <img>1</img> text <img>2</img>").CaptionFormat = EXLISTBARLib.CaptionFormatEnum.exHTML;
|
92
|
How can I display an icon in the group's caption

axListBar1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
axListBar1.Groups.Add("Group 1").Image = 1;
|
91
|
How can I access an item by its position

EXLISTBARLib.Group var_Group = axListBar1.Groups.Add("Group 1");
var_Group.AddItem("Item 1",null);
var_Group.AddItem("Item 2",null);
var_Group.AddItem("Item 3",null).Position = 0;
var_Group.get_ItemByPos(1).Bold = true;
|
90
|
How can I change the position of a group

axListBar1.Groups.Add("Group 1");
axListBar1.Groups.Add("Group 2");
axListBar1.Groups.Add("Group 3").Position = 0;
|
89
|
How can I change the group's caption

EXLISTBARLib.Group var_Group = axListBar1.Groups.Add("Group 1");
var_Group.AddItem("Item 1",null);
var_Group.AddItem("Item 2",null);
var_Group.AddItem("Item 3",null);
var_Group.Caption = "new caption";
|
88
|
How can I get the number or count of items in a group

EXLISTBARLib.Group var_Group = axListBar1.Groups.Add("Group 1");
var_Group.AddItem("Item 1",null);
var_Group.AddItem("Item 2",null);
var_Group.AddItem("Item 3",null);
var_Group.AddItem(var_Group.Count.ToString(),null);
|
87
|
How can I access an item in a group

EXLISTBARLib.Group var_Group = axListBar1.Groups.Add("Group 1");
var_Group.AddItem("Item 1",null);
var_Group.AddItem("Item 2",null);
var_Group.AddItem("Item 3",null);
var_Group[1].Bold = true;
|
86
|
How can I remove all items, from a group
EXLISTBARLib.Group var_Group = axListBar1.Groups.Add("Group 1");
var_Group.AddItem("Item 1",null);
var_Group.AddItem("Item 2",null);
var_Group.AddItem("Item 3",null);
var_Group.Clear();
|
85
|
How can I remove an item, from a group

EXLISTBARLib.Group var_Group = axListBar1.Groups.Add("Group 1");
var_Group.AddItem("Item 1",null);
var_Group.AddItem("Item 2",null);
var_Group.AddItem("Item 3",null);
var_Group.RemoveItem(1);
|
84
|
How can I add a new item to a group

axListBar1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
EXLISTBARLib.Group var_Group = axListBar1.Groups.Add("Group 1");
var_Group.AddItem("Item 1",1);
|
83
|
How can I add a new item to a group

axListBar1.Groups.Add("Group 1").AddItem("Item 1",null);
|
82
|
How can I add a new item to a group

EXLISTBARLib.Group var_Group = axListBar1.Groups.Add("Group 1");
var_Group.AddItem("Item 1",null);
|
81
|
How can I get the groups as they are listed
EXLISTBARLib.Groups var_Groups = axListBar1.Groups;
var_Groups.Add("Group 1");
var_Groups.Add("Group 2");
var_Groups.Add("Group 3");
|
80
|
How can I access a group by position

EXLISTBARLib.Groups var_Groups = axListBar1.Groups;
var_Groups.Add("Group 1");
var_Groups.Add("Group 2");
var_Groups.Add("Group 3");
var_Groups.get_ItemByPos(1).Bold = true;
|
79
|
How can I access a group

EXLISTBARLib.Groups var_Groups = axListBar1.Groups;
var_Groups.Add("Group 1");
var_Groups.Add("Group 2");
var_Groups.Add("Group 3");
var_Groups[1].Bold = true;
|
78
|
How can I clear the groups collection
EXLISTBARLib.Groups var_Groups = axListBar1.Groups;
var_Groups.Add("Group 1");
var_Groups.Add("Group 2");
var_Groups.Add("Group 3");
var_Groups.Clear();
|
77
|
How can I remove a group

EXLISTBARLib.Groups var_Groups = axListBar1.Groups;
var_Groups.Add("Group 1");
var_Groups.Add("Group 2");
var_Groups.Add("Group 3");
var_Groups.Remove(1);
|
76
|
How can I add a group

EXLISTBARLib.Group var_Group = axListBar1.Groups.Add("Group 1");
var_Group.AddItem("Item 1",null);
var_Group.AddItem("Item 2",null);
|
75
|
How do I count the number of groups

EXLISTBARLib.Groups var_Groups = axListBar1.Groups;
var_Groups.Add("Group 1");
var_Groups.Add("Group 2");
var_Groups.Add("Group 3");
var_Groups.Add(var_Groups.Count.ToString());
|
74
|
How can I display pictures with a custom size, instead icons, in the shortcut bar

axListBar1.ShowShortcutBar = true;
axListBar1.Groups.Add("Group 1").Shortcut = "Set 1";
axListBar1.Groups.Add("Group 2").Shortcut = "Set 1";
axListBar1.Groups.Add("Group 3").Shortcut = "Set 2";
axListBar1.Groups.Add("Group 4").Shortcut = "Set 2";
axListBar1.set_ShortcutPicture("Set 1",(axListBar1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)") as stdole.IPictureDisp));
axListBar1.set_ShortcutPicture("Set 2",(axListBar1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\auction.gif`)") as stdole.IPictureDisp));
axListBar1.ShortcutPictureWidth = 32;
axListBar1.ShortcutPictureHeight = 32;
axListBar1.ShortcutBarHeight = 32;
|
73
|
How can I display pictures instead icons, in the shortcut bar

axListBar1.ShowShortcutBar = true;
axListBar1.Groups.Add("Group 1").Shortcut = "Set 1";
axListBar1.Groups.Add("Group 2").Shortcut = "Set 1";
axListBar1.Groups.Add("Group 3").Shortcut = "Set 2";
axListBar1.Groups.Add("Group 4").Shortcut = "Set 2";
axListBar1.set_ShortcutPicture("Set 1",(axListBar1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)") as stdole.IPictureDisp));
axListBar1.set_ShortcutPicture("Set 2",(axListBar1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\auction.gif`)") as stdole.IPictureDisp));
axListBar1.ShortcutBarHeight = 44;
|
72
|
How can I change the visual appearance of the shortcut bar, using EBN files

axListBar1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn");
axListBar1.VisualAppearance.Add(2,"c:\\exontrol\\images\\pushed.ebn");
axListBar1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
axListBar1.ShowShortcutBar = true;
axListBar1.Groups.Add("Group 1").Shortcut = "Set <img>1</img>";
axListBar1.Groups.Add("Group 2").Shortcut = "Set <img>1</img>";
axListBar1.Groups.Add("Group 3").Shortcut = "Set <img>2</img>";
axListBar1.Groups.Add("Group 4").Shortcut = "Set <img>2</img>";
(axListBar1.GetOcx() as EXLISTBARLib.ListBar).ShortcutResizeBackColor = 0x2000000;
(axListBar1.GetOcx() as EXLISTBARLib.ListBar).ShortcutBarSelCaptionBackColor = 0x1000000;
(axListBar1.GetOcx() as EXLISTBARLib.ListBar).ShortcutBarSelBackColor = 0x1000000;
(axListBar1.GetOcx() as EXLISTBARLib.ListBar).BackColorGroup = 0x1000000;
|
71
|
How can I change the visual appearance of the separator between groups and the shortcut bar, using your EBN files

axListBar1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn");
axListBar1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
axListBar1.ShowShortcutBar = true;
axListBar1.Groups.Add("Group 1").Shortcut = "Set <img>1</img>";
axListBar1.Groups.Add("Group 2").Shortcut = "Set <img>1</img>";
axListBar1.Groups.Add("Group 3").Shortcut = "Set <img>2</img>";
axListBar1.Groups.Add("Group 4").Shortcut = "Set <img>2</img>";
(axListBar1.GetOcx() as EXLISTBARLib.ListBar).ShortcutResizeBackColor = 0x1000000;
axListBar1.ExpandShortcutCount = 1;
|
70
|
How do I change the background color of the separator between groups and the shortcut bar

axListBar1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
axListBar1.ShowShortcutBar = true;
axListBar1.Groups.Add("Group 1").Shortcut = "Set <img>1</img>";
axListBar1.Groups.Add("Group 2").Shortcut = "Set <img>1</img>";
axListBar1.Groups.Add("Group 3").Shortcut = "Set <img>2</img>";
axListBar1.Groups.Add("Group 4").Shortcut = "Set <img>2</img>";
axListBar1.ShortcutResizeBackColor = Color.FromArgb(255,0,0);
axListBar1.ExpandShortcutCount = 1;
|
69
|
How can I change the visual appearance of the shortcut bar, using your EBN files

axListBar1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn");
axListBar1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
axListBar1.ShowShortcutBar = true;
axListBar1.Groups.Add("Group 1").Shortcut = "Set <img>1</img>";
axListBar1.Groups.Add("Group 2").Shortcut = "Set <img>1</img>";
axListBar1.Groups.Add("Group 3").Shortcut = "Set <img>2</img>";
axListBar1.Groups.Add("Group 4").Shortcut = "Set <img>2</img>";
(axListBar1.GetOcx() as EXLISTBARLib.ListBar).ShortcutBarSelCaptionBackColor = 0x1000000;
axListBar1.ExpandShortcutCount = 1;
|
68
|
How do I change the selection background color in the shortcut bar

axListBar1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
axListBar1.ShowShortcutBar = true;
axListBar1.Groups.Add("Group 1").Shortcut = "Set <img>1</img>";
axListBar1.Groups.Add("Group 2").Shortcut = "Set <img>1</img>";
axListBar1.Groups.Add("Group 3").Shortcut = "Set <img>2</img>";
axListBar1.Groups.Add("Group 4").Shortcut = "Set <img>2</img>";
axListBar1.ShortcutBarSelCaptionBackColor = Color.FromArgb(255,0,0);
axListBar1.ExpandShortcutCount = 1;
|
67
|
How can I change the visual appearance of the shortcut bar, using your EBN files

axListBar1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn");
axListBar1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
axListBar1.ShowShortcutBar = true;
axListBar1.Groups.Add("Group 1").Shortcut = "Set <img>1</img>";
axListBar1.Groups.Add("Group 2").Shortcut = "Set <img>1</img>";
axListBar1.Groups.Add("Group 3").Shortcut = "Set <img>2</img>";
axListBar1.Groups.Add("Group 4").Shortcut = "Set <img>2</img>";
(axListBar1.GetOcx() as EXLISTBARLib.ListBar).ShortcutBarSelBackColor = 0x1000000;
|
66
|
How do I change the selection background color in the shortcut bar

axListBar1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
axListBar1.ShowShortcutBar = true;
axListBar1.Groups.Add("Group 1").Shortcut = "Set <img>1</img>";
axListBar1.Groups.Add("Group 2").Shortcut = "Set <img>1</img>";
axListBar1.Groups.Add("Group 3").Shortcut = "Set <img>2</img>";
axListBar1.Groups.Add("Group 4").Shortcut = "Set <img>2</img>";
axListBar1.ShortcutBarSelBackColor = Color.FromArgb(255,0,0);
|
65
|
How can I change the visual appearance of the shortcut bar, using your EBN files

axListBar1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn");
axListBar1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
axListBar1.ShowShortcutBar = true;
axListBar1.Groups.Add("Group 1").Shortcut = "Set <img>1</img>";
axListBar1.Groups.Add("Group 2").Shortcut = "Set <img>1</img>";
axListBar1.Groups.Add("Group 3").Shortcut = "Set <img>2</img>";
axListBar1.Groups.Add("Group 4").Shortcut = "Set <img>2</img>";
(axListBar1.GetOcx() as EXLISTBARLib.ListBar).ShortcutBarBackColor = 0x1000000;
|
64
|
How do I change the background color in the shortcut bar

axListBar1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
axListBar1.ShowShortcutBar = true;
axListBar1.Groups.Add("Group 1").Shortcut = "Set <img>1</img>";
axListBar1.Groups.Add("Group 2").Shortcut = "Set <img>1</img>";
axListBar1.Groups.Add("Group 3").Shortcut = "Set <img>2</img>";
axListBar1.Groups.Add("Group 4").Shortcut = "Set <img>2</img>";
axListBar1.ShortcutBarBackColor = Color.FromArgb(255,0,0);
|
63
|
How can I programmatically change expand or collapse the shortcut bar

axListBar1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
axListBar1.ShowShortcutBar = true;
axListBar1.Groups.Add("Group 1").Shortcut = "Set <img>1</img>";
axListBar1.Groups.Add("Group 2").Shortcut = "Set <img>1</img>";
axListBar1.Groups.Add("Group 3").Shortcut = "Set <img>2</img>";
axListBar1.Groups.Add("Group 4").Shortcut = "Set <img>2</img>";
axListBar1.ExpandShortcutCount = 1;
|
62
|
How do I change the icon for the expanding or collapsing the shortcut bar

axListBar1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
axListBar1.ShowShortcutBar = true;
axListBar1.Groups.Add("Group 1").Shortcut = "Set <img>1</img>";
axListBar1.Groups.Add("Group 2").Shortcut = "Set <img>1</img>";
axListBar1.Groups.Add("Group 3").Shortcut = "Set <img>2</img>";
axListBar1.Groups.Add("Group 4").Shortcut = "Set <img>2</img>";
axListBar1.ExpandShortcutImage = 3;
|
61
|
How can I enable or disable resizing the shortcut bar

axListBar1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
axListBar1.ShowShortcutBar = true;
axListBar1.Groups.Add("Group 1").Shortcut = "Set <img>1</img>";
axListBar1.Groups.Add("Group 2").Shortcut = "Set <img>1</img>";
axListBar1.Groups.Add("Group 3").Shortcut = "Set <img>2</img>";
axListBar1.Groups.Add("Group 4").Shortcut = "Set <img>2</img>";
axListBar1.ExpandShortcutCount = 1;
axListBar1.AllowResizeShortcutBar = false;
|
60
|
How do I specify the height of the shortcut bar

axListBar1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
axListBar1.ShowShortcutBar = true;
axListBar1.Groups.Add("Group 1").Shortcut = "Set <img>1</img>";
axListBar1.Groups.Add("Group 2").Shortcut = "Set <img>1</img>";
axListBar1.Groups.Add("Group 3").Shortcut = "Set <img>2</img>";
axListBar1.Groups.Add("Group 4").Shortcut = "Set <img>2</img>";
axListBar1.ExpandShortcutCount = 1;
axListBar1.ShortcutBarHeight = 16;
|
59
|
How do I select a shortcut

axListBar1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
axListBar1.ShowShortcutBar = true;
axListBar1.Groups.Add("Group 1").Shortcut = "Set <img>1</img>";
axListBar1.Groups.Add("Group 2").Shortcut = "Set <img>1</img>";
axListBar1.Groups.Add("Group 3").Shortcut = "Set <img>2</img>";
axListBar1.Groups.Add("Group 4").Shortcut = "Set <img>2</img>";
axListBar1.ExpandShortcutCount = 1;
axListBar1.SelectShortcut = "Set <img>2</img>";
|
58
|
How do I show or hide the shortcut bar

axListBar1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
axListBar1.ShowShortcutBar = true;
axListBar1.Groups.Add("Group 1").Shortcut = "Set <img>1</img>";
axListBar1.Groups.Add("Group 2").Shortcut = "Set <img>1</img>";
axListBar1.Groups.Add("Group 3").Shortcut = "Set <img>2</img>";
axListBar1.Groups.Add("Group 4").Shortcut = "Set <img>2</img>";
axListBar1.ExpandShortcutCount = 1;
|
57
|
How do I access the groups collection
axListBar1.Groups.Add("Group 1");
|
56
|
Can I change the visual effect, appearance for the anchor, hyperlink elements, in HTML captions, after the user clicks it

axListBar1.set_FormatAnchor(false,"<b><u><fgcolor=FF0000> </fgcolor></u></b>");
axListBar1.HighlightItemType = EXLISTBARLib.HighLightItemEnum.exNoHighlight;
axListBar1.Groups.Add("Group <a1><b>1</b></a>").CaptionFormat = EXLISTBARLib.CaptionFormatEnum.exHTML;
|
55
|
Can I change the visual effect, appearance for the anchor, hyperlink elements, in HTML captions, after the user clicks it

axListBar1.set_FormatAnchor(false,"<b><u><fgcolor=FF0000> </fgcolor></u></b>");
axListBar1.HighlightItemType = EXLISTBARLib.HighLightItemEnum.exNoHighlight;
EXLISTBARLib.Group var_Group = axListBar1.Groups.Add("Group 1");
var_Group.AddItem("Item <a1><b>1</b></a>",null).CaptionFormat = EXLISTBARLib.CaptionFormatEnum.exHTML;
|
54
|
Can I change the visual effect, appearance for the anchor, hyperlink elements, in HTML captions

axListBar1.HighlightItemType = EXLISTBARLib.HighLightItemEnum.exNoHighlight;
axListBar1.set_FormatAnchor(true,"<b><u><fgcolor=FF0000> </fgcolor></u></b>");
axListBar1.Groups.Add("Group <a1><b>1</b></a>").CaptionFormat = EXLISTBARLib.CaptionFormatEnum.exHTML;
|
53
|
Can I change the visual effect, appearance for the anchor, hyperlink elements, in HTML captions

axListBar1.HighlightItemType = EXLISTBARLib.HighLightItemEnum.exNoHighlight;
axListBar1.set_FormatAnchor(true,"<b><u><fgcolor=FF0000> </fgcolor></u></b>");
EXLISTBARLib.Group var_Group = axListBar1.Groups.Add("Group 1");
var_Group.AddItem("Item <a1><b>1</b></a>",null).CaptionFormat = EXLISTBARLib.CaptionFormatEnum.exHTML;
|
52
|
How can I add several pictures and icons to an item

axListBar1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
axListBar1.set_HTMLPicture("pic1","c:\\exontrol\\images\\zipdisk.gif");
axListBar1.set_HTMLPicture("pic2","c:\\exontrol\\images\\auction.gif");
EXLISTBARLib.Group var_Group = axListBar1.Groups.Add("Group 1");
var_Group.ItemHeight = 48;
EXLISTBARLib.Item var_Item = var_Group.AddItem("<img>pic1</img> te <img>1:4</img><img>1:4</img><img>1:4</img><img>1</img> xt <img>pic2</img>",null);
var_Item.Image = 2;
var_Item.CaptionFormat = EXLISTBARLib.CaptionFormatEnum.exHTML;
|
51
|
How can I add several pictures and icons to an item

axListBar1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
axListBar1.set_HTMLPicture("pic1","c:\\exontrol\\images\\zipdisk.gif");
axListBar1.set_HTMLPicture("pic2","c:\\exontrol\\images\\auction.gif");
EXLISTBARLib.Group var_Group = axListBar1.Groups.Add("Group 1");
var_Group.ItemHeight = 48;
EXLISTBARLib.Item var_Item = var_Group.AddItem("<img>pic1</img> te <img>1:4</img><img>1:4</img><img>1:4</img><img>1</img> xt <img>pic2</img>",null);
var_Item.Image = 2;
var_Item.CaptionFormat = EXLISTBARLib.CaptionFormatEnum.exHTML;
|
50
|
How can I add several pictures to an item

axListBar1.set_HTMLPicture("pic1","c:\\exontrol\\images\\zipdisk.gif");
axListBar1.set_HTMLPicture("pic2","c:\\exontrol\\images\\auction.gif");
EXLISTBARLib.Group var_Group = axListBar1.Groups.Add("Group 1");
var_Group.ItemHeight = 48;
var_Group.AddItem("<img>pic1</img> text <img>pic2</img>",null).CaptionFormat = EXLISTBARLib.CaptionFormatEnum.exHTML;
|
49
|
How can I add several pictures to a group

axListBar1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
axListBar1.set_HTMLPicture("pic1","c:\\exontrol\\images\\zipdisk.gif");
axListBar1.set_HTMLPicture("pic2","c:\\exontrol\\images\\auction.gif");
axListBar1.GroupHeight = 48;
EXLISTBARLib.Group var_Group = axListBar1.Groups.Add("<img>pic1</img> te <img>1:4</img><img>1:4</img><img>1:4</img><img>1</img> xt <img>pic2</img>");
var_Group.Image = 2;
var_Group.CaptionFormat = EXLISTBARLib.CaptionFormatEnum.exHTML;
var_Group.Picture = (axListBar1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\colorize.gif`)") as stdole.IPictureDisp);
var_Group.AddItem("Item 1",null);
var_Group.AddItem("Item 2",null);
|
48
|
How can I add several pictures and icons to a group

axListBar1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
axListBar1.set_HTMLPicture("pic1","c:\\exontrol\\images\\zipdisk.gif");
axListBar1.set_HTMLPicture("pic2","c:\\exontrol\\images\\auction.gif");
axListBar1.GroupHeight = 48;
axListBar1.Groups.Add("<img>pic1</img> te <img>1:4</img><img>1:4</img><img>1:4</img><img>1</img> xt <img>pic2</img>").CaptionFormat = EXLISTBARLib.CaptionFormatEnum.exHTML;
|
47
|
How can I add several pictures to a group

axListBar1.set_HTMLPicture("pic1","c:\\exontrol\\images\\zipdisk.gif");
axListBar1.set_HTMLPicture("pic2","c:\\exontrol\\images\\auction.gif");
axListBar1.GroupHeight = 48;
EXLISTBARLib.Group var_Group = axListBar1.Groups.Add("<img>pic1</img> text <img>pic2</img>");
var_Group.CaptionFormat = EXLISTBARLib.CaptionFormatEnum.exHTML;
var_Group.Picture = (axListBar1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\colorize.gif`)") as stdole.IPictureDisp);
var_Group.AddItem("Item 1",null);
var_Group.AddItem("Item 2",null);
|
46
|
How can I add several pictures to a group

axListBar1.set_HTMLPicture("pic1","c:\\exontrol\\images\\zipdisk.gif");
axListBar1.set_HTMLPicture("pic2","c:\\exontrol\\images\\auction.gif");
axListBar1.GroupHeight = 48;
axListBar1.Groups.Add("<img>pic1</img> text <img>pic2</img>").CaptionFormat = EXLISTBARLib.CaptionFormatEnum.exHTML;
|
45
|
How do I force refreshing the control
axListBar1.BeginUpdate();
EXLISTBARLib.Group var_Group = axListBar1.Groups.Add("Group 1");
var_Group.AddItem("Item 1",null);
axListBar1.EndUpdate();
|
44
|
I've seen that the width of the tooltip is variable. Can I make it larger

axListBar1.ToolTipWidth = 328;
axListBar1.Groups.Add("ToolTip").ToolTip = "<font Tahoma;11>T</font>his is an HTML <b>tooltip</b> assigned to a group.";
|
43
|
How do I let the tooltip being displayed longer

axListBar1.ToolTipPopDelay = 10000;
axListBar1.Groups.Add("ToolTip").ToolTip = "<font Tahoma;11>T</font>his is an HTML <b>tooltip</b> assigned to a group.";
|
42
|
Can I change the default border of the tooltip, using your EBN files

axListBar1.ToolTipDelay = 1;
axListBar1.ToolTipWidth = 364;
axListBar1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn");
axListBar1.set_Background(EXLISTBARLib.BackgroundPartEnum.exToolTipAppearance,0x1000000);
axListBar1.Groups.Add("ToolTip").ToolTip = "<font Tahoma;11>T</font>his is an HTML <b>tooltip</b> assigned to a group.";
|
41
|
Can I change the background color for the tooltip

axListBar1.ToolTipDelay = 1;
axListBar1.ToolTipWidth = 364;
axListBar1.set_Background(EXLISTBARLib.BackgroundPartEnum.exToolTipBackColor,(uint)ColorTranslator.ToWin32(Color.FromArgb(255,0,0)));
axListBar1.Groups.Add("ToolTip").ToolTip = "<font Tahoma;11>T</font>his is an HTML <b>tooltip</b> assigned to a group.";
|
40
|
Does the tooltip support HTML format

axListBar1.ToolTipDelay = 1;
axListBar1.ToolTipWidth = 364;
axListBar1.Groups.Add("ToolTip").ToolTip = "<font Tahoma;11>T</font>his is an HTML <b>tooltip</b> assigned to a <fgcolor=FF0000>group</fgcolor>";
|
39
|
Can I change the forecolor for the tooltip

axListBar1.ToolTipDelay = 1;
axListBar1.ToolTipWidth = 364;
axListBar1.set_Background(EXLISTBARLib.BackgroundPartEnum.exToolTipForeColor,(uint)ColorTranslator.ToWin32(Color.FromArgb(255,0,0)));
axListBar1.Groups.Add("ToolTip").ToolTip = "This is a bit of text that's shown when the cursor hovers the group.";
|
38
|
Can I change the foreground color for the tooltip

axListBar1.ToolTipDelay = 1;
axListBar1.ToolTipWidth = 364;
axListBar1.Groups.Add("ToolTip").ToolTip = "<fgcolor=FF0000>This is a bit of text that's shown when the cursor hovers the group.</fgcolor>";
|
37
|
Can I change the font for the tooltip

axListBar1.ToolTipDelay = 1;
axListBar1.ToolTipWidth = 364;
axListBar1.Groups.Add("ToolTip").ToolTip = "<font Tahoma>This is a bit of text that's shown when the cursor hovers the group.</font> Back to the normal font";
|
36
|
Can I change the font for the tooltip

axListBar1.ToolTipDelay = 1;
stdole.IFontDisp var_StdFont = axListBar1.ToolTipFont;
var_StdFont.Name = "Tahoma";
var_StdFont.Size = 14;
axListBar1.ToolTipWidth = 364;
axListBar1.Groups.Add("ToolTip").ToolTip = "This is a bit of text that's shown when the cursor hovers the group.";
|
35
|
How do I disable showing the tooltip for all control
axListBar1.ToolTipDelay = 0;
axListBar1.Groups.Add("ToolTip").ToolTip = "This is a bit of text that's shown when the cursor hovers the group.";
|
34
|
How do I show the tooltip quicker
axListBar1.ToolTipDelay = 1;
axListBar1.Groups.Add("ToolTip").ToolTip = "This is a bit of text that's shown when the cursor hovers the group.";
|
33
|
How do I call your x-script language

(axListBar1.ExecuteTemplate("Groups.Add(`Group 1`)") as EXLISTBARLib.Group).AddItem("Item 1",null);
|
32
|
How do I call your x-script language

axListBar1.Template = "BackColor = RGB(255,0,0)";
|
31
|
How do I remove the control's borders
axListBar1.BeginUpdate();
axListBar1.Appearance = EXLISTBARLib.AppearanceEnum.exNone;
axListBar1.BorderWidth = 0;
axListBar1.BorderHeight = 0;
axListBar1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
axListBar1.Groups.Add("Group 1").AddItem("Item 1",null).Image = 1;
axListBar1.Groups.Add("Group 2").AddItem("Item 2",null);
axListBar1.EndUpdate();
|
30
|
How do I specify width or the height of the control's borders
axListBar1.BeginUpdate();
axListBar1.Appearance = EXLISTBARLib.AppearanceEnum.exNone;
axListBar1.BorderWidth = 0;
axListBar1.BorderHeight = 0;
axListBar1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
axListBar1.Groups.Add("Group 1").AddItem("Item 1",null).Image = 1;
axListBar1.Groups.Add("Group 2").AddItem("Item 2",null);
axListBar1.EndUpdate();
|
27
|
How do I specify to highlight the items in the group, when the cursor hovers the item

axListBar1.BeginUpdate();
axListBar1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
axListBar1.HighlightItemType = EXLISTBARLib.HighLightItemEnum.exUnion;
axListBar1.Groups.Add("Group 1").AddItem("Item 1",null).Image = 1;
axListBar1.Groups.Add("Group 2").AddItem("Item 2",null);
axListBar1.EndUpdate();
|
26
|
How do I specify to highlight the items in the group, when the cursor hovers the item

axListBar1.BeginUpdate();
axListBar1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
axListBar1.HighlightItemType = EXLISTBARLib.HighLightItemEnum.exIcon;
axListBar1.Groups.Add("Group 1").AddItem("Item 1",null).Image = 1;
axListBar1.Groups.Add("Group 2").AddItem("Item 2",null);
axListBar1.EndUpdate();
|
25
|
How do I specify to highlight the items in the group, when the cursor hovers the item

axListBar1.BeginUpdate();
axListBar1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
axListBar1.HighlightItemType = EXLISTBARLib.HighLightItemEnum.exCaption;
axListBar1.Groups.Add("Group 1").AddItem("Item 1",null).Image = 1;
axListBar1.Groups.Add("Group 2").AddItem("Item 2",null);
axListBar1.EndUpdate();
|
24
|
How do I specify the way the control highlight the items in the group
axListBar1.BeginUpdate();
axListBar1.HighlightItemType = EXLISTBARLib.HighLightItemEnum.exNoHighlight;
axListBar1.Groups.Add("Group 1").AddItem("Item 1",null);
axListBar1.Groups.Add("Group 2").AddItem("Item 2",null);
axListBar1.EndUpdate();
|
23
|
Is there any function to avoid painting the control while adding multiple items and groups
axListBar1.BeginUpdate();
axListBar1.Groups.Add("Group 1").AddItem("Item 1",null);
axListBar1.Groups.Add("Group 2").AddItem("Item 2",null);
axListBar1.EndUpdate();
|
22
|
How do I decrease the delay to scroll a group
axListBar1.DelayScroll = 0;
axListBar1.Groups.Add("Group 1").AddItem("Item 1",null);
axListBar1.Groups.Add("Group 2").AddItem("Item 2",null);
|
21
|
How do I display icons

axListBar1.SmallIcons = true;
axListBar1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
axListBar1.Groups.Add("Group 1").Image = 1;
|
20
|
How do I display 32x32 icons

axListBar1.SmallIcons = false;
axListBar1.GroupHeight = 36;
axListBar1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
axListBar1.Groups.Add("Group 1").Image = 1;
|
19
|
How do I specify the height of the groups

axListBar1.GroupHeight = 40;
axListBar1.Groups.Add("Group 1");
axListBar1.Groups.Add("Group 2");
|
18
|
How do I change the visual appearance of the groups

axListBar1.GroupAppearance = EXLISTBARLib.AppearanceEnum.exSingle;
axListBar1.Groups.Add("Group 1");
axListBar1.Groups.Add("Group 2");
|
17
|
How do I change the visual appearance of the groups, using your EBN files

axListBar1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn");
(axListBar1.GetOcx() as EXLISTBARLib.ListBar).BackColorGroup = 0x1000000;
axListBar1.Groups.Add("Group 1");
axListBar1.Groups.Add("Group 2");
|
16
|
How do I change the background color for the groups

axListBar1.BackColorGroup = Color.FromArgb(255,0,0);
axListBar1.BackColorGroup2 = Color.FromArgb(255,0,0);
axListBar1.Groups.Add("Group 1");
|
15
|
How do I change the background color for the groups

axListBar1.BackColorGroup = Color.FromArgb(255,0,0);
axListBar1.Groups.Add("Group 1");
|
14
|
How do I change the control's foreground color

axListBar1.ForeColor = Color.FromArgb(0,0,255);
axListBar1.ForeColorGroup = Color.FromArgb(255,0,0);
axListBar1.Groups.Add("Group 1").AddItem("Item 1",null);
axListBar1.Groups.Add("Group 2");
|
13
|
How can I change the control's font

axListBar1.Font.Name = "Tahoma";
axListBar1.Groups.Add("Group 1");
|
12
|
How do I change the control's foreground color

axListBar1.ForeColor = Color.FromArgb(255,0,0);
axListBar1.Groups.Add("Group 1").AddItem("Item 1",null);
|
11
|
How do I change the control's background color

axListBar1.BackColor = Color.FromArgb(200,200,200);
|
10
|
How do I change the control's border, using your EBN files

axListBar1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn");
axListBar1.Appearance = (EXLISTBARLib.AppearanceEnum)0x1000000;
|
9
|
How do I remove the control's border
axListBar1.Appearance = EXLISTBARLib.AppearanceEnum.exNone;
|
8
|
How do I put a picture on the center of the control
(axListBar1.GetOcx() as EXLISTBARLib.ListBar).Picture = (axListBar1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)") as stdole.IPictureDisp);
axListBar1.PictureDisplay = EXLISTBARLib.PictureDisplayEnum.MiddleCenter;
|
7
|
How do I resize/stretch a picture on the control's background
(axListBar1.GetOcx() as EXLISTBARLib.ListBar).Picture = (axListBar1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)") as stdole.IPictureDisp);
axListBar1.PictureDisplay = EXLISTBARLib.PictureDisplayEnum.Stretch;
|
6
|
How do I put a picture on the control's center right bottom side
(axListBar1.GetOcx() as EXLISTBARLib.ListBar).Picture = (axListBar1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)") as stdole.IPictureDisp);
axListBar1.PictureDisplay = EXLISTBARLib.PictureDisplayEnum.LowerRight;
|
5
|
How do I put a picture on the control's center left bottom side
(axListBar1.GetOcx() as EXLISTBARLib.ListBar).Picture = (axListBar1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)") as stdole.IPictureDisp);
axListBar1.PictureDisplay = EXLISTBARLib.PictureDisplayEnum.LowerLeft;
|
4
|
How do I put a picture on the control's center top side
(axListBar1.GetOcx() as EXLISTBARLib.ListBar).Picture = (axListBar1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)") as stdole.IPictureDisp);
axListBar1.PictureDisplay = EXLISTBARLib.PictureDisplayEnum.UpperCenter;
|
3
|
How do I put a picture on the control's right top corner
(axListBar1.GetOcx() as EXLISTBARLib.ListBar).Picture = (axListBar1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)") as stdole.IPictureDisp);
axListBar1.PictureDisplay = EXLISTBARLib.PictureDisplayEnum.UpperRight;
|
2
|
How do I put a picture on the control's left top corner
(axListBar1.GetOcx() as EXLISTBARLib.ListBar).Picture = (axListBar1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)") as stdole.IPictureDisp);
axListBar1.PictureDisplay = EXLISTBARLib.PictureDisplayEnum.UpperLeft;
|
1
|
How do I put a picture on the control's background
(axListBar1.GetOcx() as EXLISTBARLib.ListBar).Picture = (axListBar1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)") as stdole.IPictureDisp);
|